home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000137_fdc@columbia.edu_Thu Jun 5 10:01:24 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  57 lines

  1. Article: 14363 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: cutape
  6. Date: 5 Jun 2003 10:00:55 -0400
  7. Organization: Columbia University
  8. Lines: 40
  9. Message-ID: <bbnien$ebu$1@watsol.cc.columbia.edu>
  10. References: <3834495c.0306031601.34eb05ba@posting.google.com> <bbl8ah$pvn$1@watsol.cc.columbia.edu> <3834495c.0306041602.353fa8d6@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1054821656 24408 128.59.39.139 (5 Jun 2003 14:00:56 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 5 Jun 2003 14:00:56 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14363
  16.  
  17. In article <3834495c.0306041602.353fa8d6@posting.google.com>,
  18. Joyce <joyce_haferman@yahoo.com> wrote:
  19. : Yes, I really need to write an IBM mainframe format tape.  So, it
  20. : sounds like I have to try the tape on the IBM mainframe to see if it
  21. : can read it.  Does the IBM mainframe read variable block format?
  22. I should hope so, but the method for doing it depends on the specific
  23. operating system -- CMS, MVS, etc.  You can find some information about
  24. this here:
  25.  
  26.   ftp://kermit.columbia.edu/kermit/a/aatape.txt
  27.  
  28. : I also need to be able to read EBCDIC tapes coming from an IBM
  29. : mainframe on an UNIX system.  Do you know any software that runs on
  30. : UNIX (preferably - Solaris box) that can read an EBCDIC tape that has
  31. : an IBM label?  I am willing to purchase the software.
  32. :
  33. You should be able to do this with dd, except dd doesn't understand
  34. labels or anything -- it thinks everything on the tape is a file.
  35. What ostape does is use dd to read a label, then ostape decodes the
  36. label, then it uses dd to read the file, which it stores under the name
  37. found in the label.
  38.  
  39. If you are a programmer, you should be able to make these programs work
  40. in Solaris, just as they did in SunOS.  Unfortunately we can't do this
  41. for you because we don't have tape drives any more to test the result.
  42. As I said before, it is probably some very minor API difference between
  43. SunOS and Solaris that is causing file marks to be omitted when writing
  44. labels, or to be ignored when reading them.
  45.  
  46. If you are not a programmer, then perhaps some kind soul reading this
  47. thread will help.  The programs in question are:
  48.  
  49. cutape.c: Writes tapes in ANSI D or OS SL VB format:
  50.   ftp://kermit.columbia.edu/kermit/tu/tuuwao.c
  51.  
  52. ostape.c: Reads OS SL VB tape:
  53.   ftp://kermit.columbia.edu/kermit/tu/tuuros.c
  54.  
  55. - Frank
  56.